home *** CD-ROM | disk | FTP | other *** search
/ MacTech 1 to 12 / MacTech-vol-1-12.toast / Source / MacTech's Sprocket™ / SprocketGX / Interfaces / SplashWindow.h < prev    next >
Encoding:
C/C++ Source or Header  |  1994-08-25  |  469 b   |  31 lines  |  [TEXT/MMCC]

  1. /*
  2.     File:        SplashWindow.h
  3.  
  4.     Contains:    The splash screen window
  5.                 
  6.     Written by: Dave Falkenburg
  7.     
  8.     Copyright:    © 1993-94 by Dave Falkenburg, all rights reserved.
  9.  
  10.     Change History (most recent first):
  11.      
  12.  */
  13.  
  14. #ifndef        _SPLASHWINDOW_
  15. #define        _SPLASHWINDOW_
  16.  
  17. #ifndef        _WINDOW_
  18. #include    "Window.h"
  19. #endif
  20.  
  21. class    TSplashWindow    :    public TWindow
  22.     {
  23. public:
  24.                         TSplashWindow();
  25.                         ~TSplashWindow();
  26.  
  27.     virtual WindowPtr    MakeNewWindow(WindowPtr behindWindow);
  28.     };
  29.  
  30. #endif
  31.